home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2004 #11 / Amiga Plus CD - 2004 - No. 11.iso / AmiSoft / Util / conv / Acvt.lha / Acvt 1.07 / sources / adsk_xfd.h < prev    next >
C/C++ Source or Header  |  2001-03-08  |  1KB  |  39 lines

  1. //    This program is free software; you can redistribute it and/or modify
  2. //    it under the terms of the GNU General Public License as published by
  3. //    the Free Software Foundation; either version 2 of the License, or
  4. //    any later version.
  5. //
  6. //    This program is distributed in the hope that it will be useful,
  7. //    but WITHOUT ANY WARRANTY; without even the implied warranty of
  8. //    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  9. //    GNU General Public License for more details.
  10. //
  11. //    You should have received a copy of the GNU General Public License
  12. //    along with this program; if not, write to the Free Software
  13. //    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  14. //
  15.  
  16. #ifndef __CXFD_H__
  17. #define __CXFD_H__
  18.  
  19. #include "wintypes.h"
  20. #include "adsk.h"
  21. #include "errbase.h"
  22.  
  23. #define CXFD_FORMAT_VIOLATED ( CXFD_BASE + 0 )
  24.  
  25. class CXfd : public ADisk
  26. {
  27. public:
  28.                 CXfd();
  29.                 ~CXfd();
  30.  
  31.                 BOOL Load( char*, BOOL = FALSE, BOOL = FALSE );
  32.                 BOOL Save( char*, BOOL );
  33.  
  34. private:
  35. };
  36.  
  37. #endif
  38.  
  39.